home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 1.iso / pc / data / m19.dir / 00014.ls < prev    next >
Encoding:
Text File  |  1996-09-06  |  1.1 KB  |  33 lines

  1. on mouseDown
  2.   global gCurrentSlide, gNumberofSlides
  3.   set the castNum of sprite 13 to cast "b015"
  4.   if gCurrentSlide < gNumberofSlides then
  5.     if pressChronologyButton(13) then
  6.       sound stop 2
  7.       set gCurrentSlide to gCurrentSlide + 1
  8.       if gCurrentSlide = 7 then
  9.         set the castNum of sprite 12 to cast "7/7"
  10.         set the castNum of sprite 13 to cast "blanknext"
  11.         set the castNum of sprite 14 to cast "b017"
  12.         set the castNum of sprite 16 to cast "t7"
  13.         updateStage()
  14.         set the castNum of sprite 17 to cast "p7"
  15.         puppetTransition(11, 8, 12, 1)
  16.         updateStage()
  17.       else
  18.         set the castNum of sprite 12 to cast (gCurrentSlide & "/7")
  19.         set the castNum of sprite 13 to cast "b015"
  20.         set the castNum of sprite 14 to cast "b017"
  21.         set the castNum of sprite 16 to cast ("t" & gCurrentSlide)
  22.         updateStage()
  23.         set the castNum of sprite 17 to cast ("p" & gCurrentSlide)
  24.         puppetTransition(11, 8, 12, 1)
  25.         updateStage()
  26.       end if
  27.       narrate()
  28.     end if
  29.   else
  30.     set the castNum of sprite 13 to cast "blanknext"
  31.   end if
  32. end
  33.